home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 14 / CU Amiga Magazine's Super CD-ROM 14 (1997)(EMAP Images)(GB)(Track 1 of 3)[!][issue 1997-09].iso / CUCD / Programming / IEditor / ARexx / Save&Exit.ie < prev    next >
Encoding:
Text File  |  1997-06-17  |  298 b   |  23 lines

  1. /*
  2.   $VER: Save&Exit.ie 1.0 (14.9.95)
  3.  
  4.   Save the actual GUI and then quit IEditor: I'm too lazy to insert this
  5.   function in a menu, so here's the ARexx version!
  6.  
  7. */
  8.  
  9. OPTIONS RESULTS
  10.  
  11. address 'IEDITOR.1'
  12.  
  13. /* Check if the GUI has a name */
  14.  
  15. 'getname'
  16.  
  17. if result = '' then exit
  18.  
  19. 'save'
  20. 'quit'
  21.  
  22. exit
  23.